mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
553 B
23 lines
553 B
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"jsx": "preserve",
|
|
"types": ["@types/node", "@nuxt/types", "nuxt-i18n"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|