1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/tsconfig.json

24 lines
573 B
JSON
Raw Normal View History

2019-04-21 19:17:15 +09:00
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
2019-04-23 18:52:12 +09:00
"lib": ["dom", "es2017"],
2019-04-21 19:17:15 +09:00
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
2019-04-21 19:22:18 +09:00
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
2019-04-23 18:52:12 +09:00
"target": "esnext",
"typeRoots": ["node_modules/@types", "types"]
2019-04-21 19:17:15 +09:00
}
}