毎回忘れてしまうので、一応書き残します。
Goal
下記のようにimportできる
import { Configurations } from 'typings/types';
Tasks
Folders status
- src
|- index.ts
- typings
|- type.d.ts
- package.json
Create tsconfig.json
$ tsc --init
$ message TS6071: Successfully created a tsconfig.json file.
コメント削除された状態
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"esModuleInterop": true
}
}
Modified
修正後
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"baseUrl": "./",
"esModuleInterop": true
},
"include": ["src/**/*"]
}