1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-07 21:47:02 +09:00
anytype-ts/tsconfig.json
2024-11-12 11:03:56 +01:00

78 lines
No EOL
1.7 KiB
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": false,
"module": "esnext",
"target": "es2017",
"jsx": "react",
"resolveJsonModule": true,
"moduleResolution": "Node",
"experimentalDecorators": false,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": "./src",
"lib": [ "es5", "dom" ],
"isolatedModules": true,
"incremental": true,
"types": [ "node", "@rspack/core/module" ],
"paths": {
"json": [
"json"
],
"Component/*": [
"ts/component/*"
],
"Component": [
"ts/component"
],
"Interface/*": [
"ts/interface/*"
],
"Interface": [
"ts/interface"
],
"Docs/*": [
"ts/docs/*"
],
"Docs": [
"ts/docs"
],
"Lib/*": [
"ts/lib/*"
],
"Lib": [
"ts/lib"
],
"Model/*": [
"ts/model/*"
],
"Model": [
"ts/model"
],
"Store/*": [
"ts/store/*",
],
"Store": [
"ts/store",
],
"Hook/*": [
"ts/hook/*",
],
"Hook": [
"ts/hook",
],
"dist/*": [
"../dist/*"
],
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/**/*",
"dist/**/*",
]
}