misskey/packages/misskey-js/tsconfig.json

26 lines
494 B
JSON
Raw Normal View History

2021-05-12 16:29:17 +02:00
{
2021-07-30 06:01:52 +02:00
"$schema": "http://json.schemastore.org/tsconfig",
2021-05-16 11:22:19 +02:00
"compilerOptions": {
2021-05-16 16:42:06 +02:00
"target": "es2020",
2021-05-16 11:22:19 +02:00
"module": "commonjs",
"declaration": true,
2021-07-30 06:01:52 +02:00
"declarationMap": true,
"sourceMap": true,
2021-05-16 11:22:19 +02:00
"outDir": "./built/",
"removeComments": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
2021-07-30 06:01:52 +02:00
"esModuleInterop": true
2021-05-16 11:22:19 +02:00
},
"include": [
2021-07-30 06:01:52 +02:00
"src/**/*"
2021-05-16 11:22:19 +02:00
],
"exclude": [
"node_modules",
2021-07-30 06:01:52 +02:00
"test/**/*"
2021-05-16 11:22:19 +02:00
]
2021-05-12 16:29:17 +02:00
}