mizzkey/packages/misskey-mahjong/tsconfig.json

33 lines
601 B
JSON
Raw Normal View History

2024-01-26 06:25:00 +01:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./built/",
"removeComments": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"typeRoots": [
"./node_modules/@types"
],
"lib": [
"esnext",
"dom"
]
},
"include": [
"src/**/*"
],
"exclude": [
2024-02-11 04:45:50 +01:00
"node_modules"
2024-01-26 06:25:00 +01:00
]
}