misskey/tsconfig.json

26 lines
494 B
JSON
Raw Normal View History

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