1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-19 20:31:46 +02:00
joplin/tsconfig.json

34 lines
816 B
JSON
Raw Permalink Normal View History

2019-12-04 23:06:22 +02:00
{
"compilerOptions": {
"module": "commonjs",
2024-10-05 21:22:44 +02:00
"target": "es2017",
2020-11-05 18:58:23 +02:00
//"lib": ["es2015", "es2020.string", "dom", "dom.iterable"],
2019-12-04 23:06:22 +02:00
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"listEmittedFiles": false,
2019-12-04 23:06:22 +02:00
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
"allowUmdGlobalAccess": true,
2019-12-04 23:06:22 +02:00
},
"exclude": [
"**/node_modules",
2020-11-05 18:58:23 +02:00
"packages/app-desktop/dist/**/*",
"packages/app-cli/tests/support/**/*",
"packages/app-cli/tests-build/**/*",
"packages/app-cli/build/**/*",
"Modules/**/*",
"packages/server/dist",
2019-12-04 23:06:22 +02:00
],
"ts-node": {
"preferTsExts": true
}
2019-12-04 23:06:22 +02:00
}